home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / crefc.zip / CREFC.DOC < prev    next >
Text File  |  1993-01-04  |  1KB  |  36 lines

  1. DOCUMENTATION FOR CREFC.EXE
  2.  
  3.     This program will cross reference the symbols and values used
  4. in C source files.  The symbols and values will be listed in ASCII
  5. lexical order followed by the line numbers where the symbol or value is
  6. found.
  7.     The program can be run by typine CREFC followed by the input file
  8. name and then the output file name.  If you want information to go to the
  9. print use prn: as the output file specification. For example
  10.  
  11. C>crefc crefc.c prn:
  12.  
  13. This command will send the output to the printer prn:  if you wanted to
  14. send the output to another file use the file specification you want.  If 
  15. no file specification is given for the output file the standard output is
  16. the default.
  17.  
  18.     This is a rather simple program that can be useful for finding
  19. where you are using certain symbols or values.  
  20.  
  21.     I have included the source so that it can be modified at your 
  22. leisure.  The only non-standard function is "sysdate". Sysdate is a 
  23. function that returns the system date to be printed on the report.  If 
  24. you do not have access to such a function write me a note and I will supply
  25. you with the source for it. Use the following address:
  26.  
  27.     Dan E. Plubell
  28.     1501 E. Chevy Chase Drive
  29.     Glendale, CA. 91206
  30.     
  31.  
  32.     I hope this is of use to you.  Feel free to distribute to others.
  33. and if you have any comments or suggestions feel free to send them to the
  34. above address.
  35.  
  36.